encoding/binary.coder.offset (field)

32 uses

	encoding/binary (current package)
		binary.go#L459: 	offset int
		binary.go#L466: 	x := d.buf[d.offset]
		binary.go#L467: 	d.offset++
		binary.go#L473: 		e.buf[e.offset] = 1
		binary.go#L475: 		e.buf[e.offset] = 0
		binary.go#L477: 	e.offset++
		binary.go#L481: 	x := d.buf[d.offset]
		binary.go#L482: 	d.offset++
		binary.go#L487: 	e.buf[e.offset] = x
		binary.go#L488: 	e.offset++
		binary.go#L492: 	x := d.order.Uint16(d.buf[d.offset : d.offset+2])
		binary.go#L493: 	d.offset += 2
		binary.go#L498: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
		binary.go#L499: 	e.offset += 2
		binary.go#L503: 	x := d.order.Uint32(d.buf[d.offset : d.offset+4])
		binary.go#L504: 	d.offset += 4
		binary.go#L509: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
		binary.go#L510: 	e.offset += 4
		binary.go#L514: 	x := d.order.Uint64(d.buf[d.offset : d.offset+8])
		binary.go#L515: 	d.offset += 8
		binary.go#L520: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
		binary.go#L521: 	e.offset += 8
		binary.go#L685: 	d.offset += dataSize(v)
		binary.go#L690: 	zero := e.buf[e.offset : e.offset+n]
		binary.go#L694: 	e.offset += n